home *** CD-ROM | disk | FTP | other *** search
/ Delphi Programmer's Power Pack / Delphi Volume 1.iso / e_to_l / kpsecure / install.exe / KPSGDEMO / DEMO.DPR next >
Encoding:
Text File  |  1996-05-20  |  250 b   |  15 lines

  1. program Demo;
  2.  
  3. uses
  4.   Forms,
  5.   Kpdemo in 'KPDEMO.PAS' {Form1DLG1},
  6.   Kpform2 in 'KPFORM2.PAS' {Form1};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.CreateForm(TForm1DLG1, Form1DLG1);
  12.   Application.CreateForm(TForm1, Form1);
  13.   Application.Run;
  14. end.
  15.